home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form1
- Caption = "Form1"
- ClientHeight = 3195
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 9795
- LinkTopic = "Form1"
- ScaleHeight = 3195
- ScaleWidth = 9795
- StartUpPosition = 3 'Windows Default
- Begin VB.TextBox Text2
- Height = 375
- Left = 480
- TabIndex = 2
- Text = "Text2"
- Top = 840
- Width = 9135
- End
- Begin VB.TextBox Text1
- Height = 375
- Left = 480
- TabIndex = 1
- Text = "1000"
- Top = 360
- Width = 1575
- End
- Begin VB.CommandButton Command1
- Caption = "Command1"
- Height = 495
- Left = 2040
- TabIndex = 0
- Top = 1320
- Width = 1695
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Command1_Click()
- Dim obj As New ConvertNum.NumtoText
- Text2.Text = obj.fchange(Text1.Text)
- End Sub
-